home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / bstring.h < prev    next >
C/C++ Source or Header  |  1990-09-11  |  970b  |  29 lines

  1. /*
  2.  * bstring.h --
  3.  *
  4.  *    Declarations of BSD library procedures for byte manipulation.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/lib/include/RCS/bstring.h,v 1.4 90/09/11 14:32:01 kupfer Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _BSTRING
  19. #define _BSTRING
  20.  
  21. #include <cfuncproto.h>
  22.  
  23. extern int    bcmp _ARGS_((char *sourcePtr, char *destPtr, int numBytes));
  24. extern void    bcopy _ARGS_((char *sourcePtr, char *destPtr, int numBytes));
  25. extern void    bzero _ARGS_((char *destPtr, int numBytes));
  26. extern int    ffs _ARGS_((int i));
  27.  
  28. #endif /* _BSTRING */
  29.